From: Juanma Barranquero Date: Wed, 30 Nov 2011 12:58:42 +0000 (+0100) Subject: src/dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~1489 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=e4dc1da7f8569dc2617a84b5e9410d74945af4d4;p=emacs.git src/dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check. --- diff --git a/src/ChangeLog b/src/ChangeLog index be9257998ec..95532f868d2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-11-30 Juanma Barranquero + + * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check. + 2011-11-30 Eli Zaretskii * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's diff --git a/src/dispnew.c b/src/dispnew.c index 7e591aa8e8f..d2f33f0b5e4 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -610,7 +610,7 @@ adjust_glyph_matrix (struct window *w, struct glyph_matrix *matrix, int x, int y } #if XASSERTS if (row->enabled_p && !row->mode_line_p) - verify_row_hash (row)); + xassert (verify_row_hash (row)); #endif ++row; }